home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / BREAK.C < prev    next >
Text File  |  1996-07-05  |  290b  |  19 lines

  1. main()
  2. {
  3.     int xx;
  4.     
  5.     for (xx=5;xx<15; xx=xx+1)
  6.     {
  7.         if (xx==8)
  8.             break;
  9.         printf("Break dongusunun icinde, xx in degeri simdi %d\n",xx);
  10.     }
  11.     
  12.     for (xx=5;xx<15;xx=xx+1)
  13.     {
  14.         if (xx==8)
  15.             continue;
  16.         printf("Continue dongusunun icinde, xx in degeri simdi %d\n",xx);
  17.     }
  18. }
  19.